home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 February: Tool Chest / Apple Developer CD Series Tool Chest February 1996 (Apple Computer)(1996).iso / Tool Chest / Interapplication Communication / AE Sample Applications / 7Edit / Pascal Sources / makefile next >
Encoding:
Makefile  |  1994-03-23  |  1.7 KB  |  66 lines  |  [TEXT/MPS ]

  1. #   File:       makefile
  2. #   Target:     SVEdit
  3. #   Sources:    SVEditGlobals.p
  4. #               SVEditAEUtils.p
  5. #               SVEditUtils.p
  6. #               SVEditions.p
  7. #               SVEditWindow.p
  8. #                SVEditFile.p
  9. #               SVEditAppleEvents.p
  10. #               SVEditMain.p
  11.  
  12.  
  13. OBJECTS = ∂
  14.         SVEditGlobals.p.o ∂
  15.         SVEditAEUtils.p.o ∂
  16.         SVEditUtils.p.o ∂
  17.         SVEditions.p.o ∂
  18.         SVEditWindow.p.o ∂
  19.         SVEditFile.p.o ∂
  20.         SVAppleEvents.p.o ∂
  21.         SVEditMain.p.o ∂
  22.  
  23.  
  24. SVEditGlobals.p.o ƒ makefile SVEditGlobals.p
  25.      Pascal  SVEditGlobals.p -sym full 
  26.      
  27. SVEditUtils.p.o ƒ makefile SVEditUtils.p SVEditGlobals.p
  28.      Pascal  SVEditUtils.p -sym full 
  29.      
  30. SVEditions.p.o ƒ makefile SVEditions.p  SVEditGlobals.p SVEditUtils.p
  31.      Pascal  SVEditions.p -sym full 
  32.      
  33. SVEditWindow.p.o ƒ makefile SVEditWindow.p SVEditGlobals.p SVEditUtils.p
  34.      Pascal  SVEditWindow.p -sym full 
  35.  
  36. SVEditFile.p.o ƒ makefile SVEditFile.p SVEditGlobals.p SVEditUtils.p
  37.      Pascal  SVEditFile.p -sym full
  38.      
  39. SVAppleEvents.p.o ƒ makefile SVAppleEvents.p  SVEditGlobals.p ∂
  40.                     SVEditUtils.p SVEditWindow.p SVEditFile.p
  41.      Pascal  SVAppleEvents.p -sym full 
  42.      
  43. SVEditAEUtils.p.o ƒ makefile SVEditAEUtils.p  SVEditGlobals.p
  44.      Pascal  SVEditAEUtils.p -sym full 
  45.      
  46. SVEditMain.p.o ƒ makefile SVEditMain.p SVAppleEvents.p SVEditGlobals.p SVEditUtils.p SVEditWindow.p
  47.      Pascal  SVEditMain.p -sym full 
  48.         
  49. 7Edit ƒƒ makefile {OBJECTS}
  50.     Link -sym full -w -t APPL -c 'SVED' ∂
  51.         {OBJECTS} ∂
  52.         "{Libraries}"Runtime.o ∂
  53.         "{Libraries}"Interface.o ∂
  54.         "{Libraries}"ToolLibs.o ∂
  55.         "{PLibraries}"PasLib.o ∂
  56.         "{Libraries}"AEObjectSupportLib.o ∂
  57.         -o 7Edit
  58.         
  59. 7Edit ƒƒ SVEdit.r makefile
  60.         Rez -rd -o {Targ} SVEdit.r -append
  61.  
  62.         
  63.         
  64.     
  65.  
  66.